home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 36.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  380b  |  22 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     int    val;
  11.  
  12.     val=test(10*100/20+3);
  13.     printf("return value is %d\n",val);
  14. }
  15.  
  16. test(i)
  17. int    i;
  18. {
  19.     printf("value is %d\n",i);
  20.     return(100/20*20+1);
  21. }
  22.